PCA Index Dashboard Examples

PCA Index Dashboard Examples#

This script was last run at 2024-03-12 10:12:29.572961+00:00 (UTC)
In US/Central Time, this is 2024-03-12 05:12:29.572961-05:00
# Change one of the plots on this page to anything else
import numpy as np
from matplotlib import pyplot as plt

x = np.linspace(0, 8, 1000)
y = x*x

plt.figure(figsize=(10, 6))
plt.plot(x, y)
plt.title('Change one of the plots on this page to anything else')
plt.xlabel('X')
plt.ylabel('y')
plt.show()
../../_images/d01383f10038dc284c91e6d107dabbf2687e40080e3b010137987e94f85b7495.png
../../_images/5614e402c2d90d69677fc2164953cdd9d979b3ff0d1dce9eabd93580995986a6.png
../../_images/78b59e075fb07356e8ab346912e988c01d4d82f544a487245411cf7e2b6417e0.png